home *** CD-ROM | disk | FTP | other *** search
/ CD/PC Actual 76 / DVD Actual 1 Marzo 2003.iso / Trial / TurboCAD 7.1 Pro / Data.Cab / F28763_TextAlong.bas < prev    next >
Encoding:
BASIC Source File  |  2000-11-10  |  1.0 KB  |  33 lines

  1. Attribute VB_Name = "Module1"
  2. Option Explicit
  3. '/******************************************************************/
  4. '/*                                                                */
  5. '/*                      TurboCAD for Windows                      */
  6. '/*                   Copyright (c) 1993 - 2000                    */
  7. '/*             International Microcomputer Software, Inc.         */
  8. '/*                            (IMSI)                              */
  9. '/*                      All rights reserved.                      */
  10. '/*                                                                */
  11. '/******************************************************************/
  12. Type TextSym
  13.     Char As String
  14.     H As Double
  15.     W As Double
  16.     xMin As Double
  17.     yMin As Double
  18.     xc As Double
  19.     yc As Double
  20. End Type
  21. Type CosmInfo
  22.     nV As Long
  23.     lCur() As Double
  24.     dL() As Double
  25.     xVer() As Double
  26.     yVer() As Double
  27.     Bet() As Double
  28. End Type
  29. ' DLL Entry point
  30. Sub Main()
  31. End Sub
  32.  
  33.